regexp.inputBytes.str (field)
16 uses
regexp (current package)
exec.go#L57: i.bytes.str = b
exec.go#L76: if i.bytes.str != nil {
exec.go#L77: i.bytes.str = nil
regexp.go#L435: str []byte
regexp.go#L439: if pos < len(i.str) {
regexp.go#L440: c := i.str[pos]
regexp.go#L444: return utf8.DecodeRune(i.str[pos:])
regexp.go#L454: return bytes.HasPrefix(i.str, re.prefixBytes)
regexp.go#L458: return bytes.Index(i.str[pos:], re.prefixBytes)
regexp.go#L464: if uint(pos-1) < uint(len(i.str)) {
regexp.go#L465: r1 = rune(i.str[pos-1])
regexp.go#L467: r1, _ = utf8.DecodeLastRune(i.str[:pos])
regexp.go#L471: if uint(pos) < uint(len(i.str)) {
regexp.go#L472: r2 = rune(i.str[pos])
regexp.go#L474: r2, _ = utf8.DecodeRune(i.str[pos:])
regexp.go#L802: ib := inputBytes{str: b}
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |